dd959e29f2271f8bb74ac87697d6087262756f81,src/main/java/com/builtbroken/militarybasedecor/vanilla/VanillaModule.java,VanillaModule,preInit,#,70
Before Change
chainLinkFence = MilitaryBaseDecor.INSTANCE.getManager().newBlock(BlockChainLinkFence.class, ItemBlockVanilla.class).setBlockUnbreakable();
paneBarbs = MilitaryBaseDecor.INSTANCE.getManager().newBlock(TilePaneBarbs.class);
bagCement = MilitaryBaseDecor.INSTANCE.getManager().newItem(ItemBagCement.class);
leatherBag = MilitaryBaseDecor.INSTANCE.getManager().newItem(ItemBag.class);
bundledWire = MilitaryBaseDecor.INSTANCE.getManager().newItem("bundled_wire", new ItemBundledWire()).setUnlocalizedName("bundled_wire");
wireCutters = MilitaryBaseDecor.INSTANCE.getManager().newItem(ItemWireCutters.class).setUnlocalizedName("wire_cutters").setTextureName(MilitaryBaseDecor.PREFIX + "wire_cutters");
After Change
chainLinkFence = MilitaryBaseDecor.INSTANCE.getManager().newBlock(BlockChainLinkFence.class, ItemBlockVanilla.class).setBlockUnbreakable();
paneBarbs = MilitaryBaseDecor.INSTANCE.getManager().newBlock("pane_barbs", new TilePaneBarbs()).setBlockName("pane_barbs");
bagCement = MilitaryBaseDecor.INSTANCE.getManager().newItem("cement_bag", new ItemBagCement()).setUnlocalizedName("cement_bag").setMaxStackSize(1).setTextureName(MilitaryBaseDecor.PREFIX + "cement_bag");
leatherBag = MilitaryBaseDecor.INSTANCE.getManager().newItem("bag", new ItemBag()).setUnlocalizedName("bag").setTextureName(MilitaryBaseDecor.PREFIX + "bag");
bundledWire = MilitaryBaseDecor.INSTANCE.getManager().newItem("bundled_wire", new ItemBundledWire()).setUnlocalizedName("bundled_wire").setTextureName(MilitaryBaseDecor.PREFIX + "bundled_wire");
wireCutters = MilitaryBaseDecor.INSTANCE.getManager().newItem("wire_cutters", new ItemWireCutters()).setUnlocalizedName("wire_cutters").setTextureName(MilitaryBaseDecor.PREFIX + "wire_cutters");